home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / COSEmulator / COSEmulator- SRC / headers / NewWindowWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-21  |  550 b   |  31 lines  |  [TEXT/CWIE]

  1. #ifndef _NewWindowWindow_h_
  2. #define _NewWindowWindow_h_
  3.  
  4. #include "Window.h"
  5.  
  6. class    NewWindowWindow : public Window
  7. {
  8. public:
  9.     NewWindowWindow( void );
  10.  
  11.     virtual    Boolean    Init( void );
  12.     
  13.     virtual    void    HandleMouseClick( Boolean down , point where );
  14.     virtual    void    HandleMouseMove( point where );
  15.     virtual    Boolean    PointInWindow( point where );
  16.  
  17.     virtual    Boolean    Front( void );    
  18.     virtual    void    SetFront( Boolean f );
  19.     
  20.     virtual    void    DrawToScreen( rect *where , Boolean backGround = false );
  21.     
  22. private:
  23.     
  24.     Boolean            okDown;
  25.     rect            okButton;
  26.     
  27. };
  28.  
  29.  
  30.  
  31. #endif